Fix Radar to display agent-jwks identities#47
Closed
runnerelectrode wants to merge 1 commit intoOpenBotAuth:mainfrom
Closed
Fix Radar to display agent-jwks identities#47runnerelectrode wants to merge 1 commit intoOpenBotAuth:mainfrom
runnerelectrode wants to merge 1 commit intoOpenBotAuth:mainfrom
Conversation
The formatAgentName function only parsed /jwks/username.json URLs
(user JWKS format) but not /agent-jwks/{uuid} URLs (agent JWKS
format from API registration). Agents registered via the API had
their identity displayed as "api.openbotauth.org" instead of a
meaningful identifier.
Add a second regex to match /agent-jwks/{id} and display a
truncated agent ID (first 8 chars).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Author
|
Closing — the /agent-jwks/{uuid} endpoint is being rolled back per #6. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
formatAgentNameinRadar.tsxonly parsed/jwks/username.jsonURLs (user JWKS format) but not/agent-jwks/{uuid}URLs (agent JWKS format from API registration viaPOST /agents)api.openbotauth.orginstead of a meaningful identifier/agent-jwks/{id}and display a truncated agent ID (first 8 chars + ellipsis)Before: Agent shows as
api.openbotauth.orgAfter: Agent shows as
9c7f611e…Longer-term suggestion
Ideally the Radar API (
/telemetry/top/agents) should return theclient_namefrom the agent record so the display shows the actual agent name (e.g. "TARS_OBA") instead of parsing the URL. TheTopAgentinterface already hasclient_name— it just needs to be populated by the backend.Test plan
/jwks/username.jsonURLs still display asusername/agent-jwks/{uuid}URLs now display as{first-8-chars}…instead ofapi.openbotauth.org🤖 Generated with Claude Code